home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / OutOfContextMenus / Source / CInvertBehavior.h < prev    next >
Encoding:
Text File  |  1999-06-23  |  567 b   |  28 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CInvertBehavior.h                 ©1999 Eric Traut
  3. // ===========================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "COffscreenBehavior.h"
  8.  
  9.  
  10. class CInvertBehavior : public COffscreenBehavior
  11. {
  12.     public:
  13.         CInvertBehavior(CShadowWindow &        inShadowWindow);
  14.  
  15.         virtual Boolean
  16.         RenderToGWorld(    StGWorldLocker &        inBackingLocker,
  17.                         StGWorldLocker &        inRenderingLocker);
  18.  
  19.         virtual Boolean
  20.         SyncWithShadowWindow(void);
  21.         
  22.     private:
  23.         Rect        mInvertRect;
  24. };
  25.  
  26.  
  27.  
  28.